home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / uint32.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  12KB  |  227 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: uint32.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The UINT32 class is used to represent 32 bit unsigned integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating a 32-bit value into four separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An UINT32 type has a base 10 limit of 4,294,967,295.
  36. */
  37. // ----------------------------------------------------------- //   
  38. #ifndef __UINT32_HPP
  39. #define __UINT32_HPP
  40.  
  41. #include "dtypes.h"
  42.  
  43. // Data structure for unsigned 32 bit integer values.
  44. class UINT32
  45. {
  46. public:
  47.   UINT32(__ULWORD__ val = 0);
  48.   UINT32(const UINT32& ob);
  49.   UINT32& operator=(const UINT32& ob);
  50.   UINT32& operator=(const __ULWORD__ ob);
  51.  
  52. public:
  53.   void UnPackBits(__ULWORD__ val);
  54.   __ULWORD__ PackBits() const;
  55.  
  56. public:
  57.   operator __ULWORD__() const;
  58.   
  59. public: // Arithmetic operators that modify their operand
  60.   UINT32 operator++(int);  // Postfix
  61.   UINT32 operator--(int);  // Postfix
  62.   UINT32 &operator++() { operator=(*this + 1); return *this; } // Prefix
  63.   UINT32 &operator--() { operator=(*this - 1); return *this; } // Prefix
  64.   void operator+=(const UINT32 &i) { operator=(*this + i); }
  65.   void operator-=(const UINT32 &i) { operator=(*this - i); }
  66.   void operator*=(const UINT32 &i) { operator=(*this * i); }
  67.   void operator/=(const UINT32 &i);
  68.  
  69.   void operator+=(const __LWORD__ &i) { operator=(*this + i); }
  70.   void operator-=(const __LWORD__ &i) { operator=(*this - i); }
  71.   void operator*=(const __LWORD__ &i) { operator=(*this * i); }
  72.   void operator/=(const __LWORD__ &i);
  73.  
  74.   void operator+=(const __ULWORD__ &i) { operator=(*this + i); }
  75.   void operator-=(const __ULWORD__ &i) { operator=(*this - i); }
  76.   void operator*=(const __ULWORD__ &i) { operator=(*this * i); }
  77.   void operator/=(const __ULWORD__ &i);
  78.  
  79.   void operator+=(const __WORD__ &i) { operator=(*this + i); }
  80.   void operator-=(const __WORD__ &i) { operator=(*this - i); }
  81.   void operator*=(const __WORD__ &i) { operator=(*this * i); }
  82.   void operator/=(const __WORD__ &i);
  83.  
  84.   void operator+=(const __SWORD__ &i) { operator=(*this + i); }
  85.   void operator-=(const __SWORD__ &i) { operator=(*this - i); }
  86.   void operator*=(const __SWORD__ &i) { operator=(*this * i); }
  87.   void operator/=(const __SWORD__ &i);
  88.  
  89.   void operator+=(const __UWORD__ &i) { operator=(*this + i); }
  90.   void operator-=(const __UWORD__ &i) { operator=(*this - i); }
  91.   void operator*=(const __UWORD__ &i) { operator=(*this * i); }
  92.   void operator/=(const __UWORD__ &i);
  93.  
  94.   void operator+=(const __USWORD__ &i) { operator=(*this + i); }
  95.   void operator-=(const __USWORD__ &i) { operator=(*this - i); }
  96.   void operator*=(const __USWORD__ &i) { operator=(*this * i); }
  97.   void operator/=(const __USWORD__ &i);
  98.  
  99.   void operator+=(const __SBYTE__ &i) { operator=(*this + (__ULWORD__)i); }
  100.   void operator-=(const __SBYTE__ &i) { operator=(*this - (__ULWORD__)i); }
  101.   void operator*=(const __SBYTE__ &i) { operator=(*this * (__ULWORD__)i); }
  102.   void operator/=(const __SBYTE__ &i);
  103.  
  104.   void operator+=(const __UBYTE__ &i) { operator=(*this + (__ULWORD__)i); }
  105.   void operator-=(const __UBYTE__ &i) { operator=(*this - (__ULWORD__)i); }
  106.   void operator*=(const __UBYTE__ &i) { operator=(*this * (__ULWORD__)i); }
  107.   void operator/=(const __UBYTE__ &i);
  108.  
  109. public: // Comparison operators
  110.   friend int operator==(const UINT32 &a, const UINT32 &b);
  111.   friend int operator==(const UINT32 &a, const __LWORD__ &bl);
  112.   friend int operator==(const __LWORD__ &al, const UINT32 &b);
  113.   friend int operator==(const UINT32 &a, const __ULWORD__ &bl);
  114.   friend int operator==(const __ULWORD__ &al, const UINT32 &b);
  115.   friend int operator==(const UINT32 &a, const __WORD__ &bl);
  116.   friend int operator==(const __WORD__ &al, const UINT32 &b);
  117.   friend int operator==(const UINT32 &a, const __SWORD__ &bl);
  118.   friend int operator==(const __SWORD__ &al, const UINT32 &b);
  119.   friend int operator==(const UINT32 &a, const __UWORD__ &bl);
  120.   friend int operator==(const __UWORD__ &al, const UINT32 &b);
  121.   friend int operator==(const UINT32 &a, const __USWORD__ &bl);
  122.   friend int operator==(const __USWORD__ &al, const UINT32 &b);
  123.   friend int operator==(const UINT32 &a, const __SBYTE__ &bl);
  124.   friend int operator==(const __SBYTE__ &al, const UINT32 &b);
  125.   friend int operator==(const UINT32 &a, const __UBYTE__ &bl);
  126.   friend int operator==(const __UBYTE__ &al, const UINT32 &b);
  127.  
  128.   friend int operator!=(const UINT32 &a, const UINT32 &b);
  129.   friend int operator!=(const UINT32 &a, const __LWORD__ &bl);
  130.   friend int operator!=(const __LWORD__ &al, const UINT32 &b);
  131.   friend int operator!=(const UINT32 &a, const __ULWORD__ &bl);
  132.   friend int operator!=(const __ULWORD__ &al, const UINT32 &b);
  133.   friend int operator!=(const UINT32 &a, const __WORD__ &bl);
  134.   friend int operator!=(const __WORD__ &al, const UINT32 &b);
  135.   friend int operator!=(const UINT32 &a, const __SWORD__ &bl);
  136.   friend int operator!=(const __SWORD__ &al, const UINT32 &b);
  137.   friend int operator!=(const UINT32 &a, const __UWORD__ &bl);
  138.   friend int operator!=(const __UWORD__ &al, const UINT32 &b);
  139.   friend int operator!=(const UINT32 &a, const __USWORD__ &bl);
  140.   friend int operator!=(const __USWORD__ &al, const UINT32 &b);
  141.   friend int operator!=(const UINT32 &a, const __SBYTE__ &bl);
  142.   friend int operator!=(const __SBYTE__ &al, const UINT32 &b);
  143.   friend int operator!=(const UINT32 &a, const __UBYTE__ &bl);
  144.   friend int operator!=(const __UBYTE__ &al, const UINT32 &b);
  145.  
  146.   friend int operator<(const UINT32 &a, const UINT32 &b);
  147.   friend int operator<(const UINT32 &a, const __LWORD__ &bl);
  148.   friend int operator<(const __LWORD__ &al, const UINT32 &b);
  149.   friend int operator<(const UINT32 &a, const __ULWORD__ &bl);
  150.   friend int operator<(const __ULWORD__ &al, const UINT32 &b);
  151.   friend int operator<(const UINT32 &a, const __WORD__ &bl);
  152.   friend int operator<(const __WORD__ &al, const UINT32 &b);
  153.   friend int operator<(const UINT32 &a, const __SWORD__ &bl);
  154.   friend int operator<(const __SWORD__ &al, const UINT32 &b);
  155.   friend int operator<(const UINT32 &a, const __UWORD__ &bl);
  156.   friend int operator<(const __UWORD__ &al, const UINT32 &b);
  157.   friend int operator<(const UINT32 &a, const __USWORD__ &bl);
  158.   friend int operator<(const __USWORD__ &al, const UINT32 &b);
  159.   friend int operator<(const UINT32 &a, const __SBYTE__ &bl);
  160.   friend int operator<(const __SBYTE__ &al, const UINT32 &b);
  161.   friend int operator<(const UINT32 &a, const __UBYTE__ &bl);
  162.   friend int operator<(const __UBYTE__ &al, const UINT32 &b);
  163.  
  164.   friend int operator>(const UINT32 &a, const UINT32 &b);
  165.   friend int operator>(const UINT32 &a, const __LWORD__ &bl);
  166.   friend i